.google-meet-settings .card {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.google-meet-settings .connected {
    color: #4CAF50;
    font-weight: bold;
}

.google-meet-settings .not-connected {
    color: #F44336;
    font-weight: bold;
}

.google-meet-meetings table.wp-list-table {
    width: 100%;
}

.google-meet-user-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.google-meet-user-dashboard .google-meet-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.google-meet-user-dashboard .google-meet-table th,
.google-meet-user-dashboard .google-meet-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.google-meet-user-dashboard .google-meet-table th {
    background-color: #f5f5f5;
}

.google-meet-create-form {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.google-meet-create-form .form-group {
    margin-bottom: 15px;
}

.google-meet-create-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.google-meet-create-form input[type="text"],
.google-meet-create-form input[type="datetime-local"],
.google-meet-create-form textarea,
.google-meet-create-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.google-meet-create-form select[multiple] {
    height: auto;
    min-height: 100px;
}

#google-meet-user-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

#google-meet-user-message.success {
    background-color: #dff0d8;
    color: #3c763d;
}

#google-meet-user-message.error {
    background-color: #f2dede;
    color: #a94442;
}

/* Popup styles */
#google-meet-popup-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-meet-popup-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.google-meet-close-popup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.google-meet-close-popup:hover {
    color: #f00;
}

.preselected-user {
    padding: 8px;
    background: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 10px;
}

.candidate-list .btn-action-icon i {
    display: block;
    margin-top: 9px;
}