/* Meeting Manager Frontend Styles */

.mmp-frontend-dashboard {
    background: white;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.mmp-tabs {
    margin-top: 20px;
}

.mmp-tab-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid #ddd;
}

.mmp-tab-item {
    margin: 0;
}

.mmp-tab-link {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.mmp-tab-item.active .mmp-tab-link {
    color: #0073aa;
    border-bottom-color: #0073aa;
}

.mmp-tab-link:hover {
    color: #0073aa;
}

.mmp-tab-content {
    display: none;
    padding: 20px 0;
}

.mmp-tab-content.active {
    display: block;
}

.mmp-form-container {
    background: white;
    padding: 30px;
    border-radius: 4px;
    margin: 20px 0;
}

.mmp-form {
    max-width: 500px;
}

.mmp-form-group {
    margin-bottom: 20px;
}

.mmp-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.mmp-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.mmp-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.1);
}

.mmp-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mmp-button-primary {
    background-color: #0073aa;
    color: white;
}

.mmp-button-primary:hover {
    background-color: #005a87;
}

.mmp-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.mmp-message.success {
    display: block;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.mmp-message.error {
    display: block;
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

.mmp-loading {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.mmp-meeting-details {
    background: white;
    padding: 30px;
    border-radius: 4px;
    margin: 20px 0;
}

.mmp-meeting-details h2 {
    margin-top: 0;
    color: #0073aa;
}

.mmp-meeting-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.mmp-meeting-info p {
    margin: 8px 0;
}

.mmp-agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mmp-agenda-list li {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 4px solid #0073aa;
    border-radius: 2px;
}

.mmp-agenda-list strong {
    display: block;
    margin-bottom: 8px;
    color: #0073aa;
}

.mmp-agenda-list small {
    display: block;
    color: #999;
    margin-top: 10px;
}

.mmp-minutes-list {
    margin-top: 20px;
}

.mmp-minute-item {
    background: #f9f9f9;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
    border-left: 4px solid #0073aa;
}

.mmp-minute-item p {
    margin: 0 0 10px 0;
}

.mmp-minute-item small {
    color: #999;
}

.mmp-actions-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.mmp-actions-table thead {
    background-color: #f5f5f5;
    border-bottom: 2px solid #0073aa;
}

.mmp-actions-table th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #333;
}

.mmp-actions-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.mmp-actions-table tbody tr:hover {
    background-color: #f9f9f9;
}

.mmp-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.mmp-badge-scheduled {
    background-color: #e7f3ff;
    color: #0073aa;
}

.mmp-badge-completed {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.mmp-badge-pending {
    background-color: #fff3e0;
    color: #e65100;
}

@media (max-width: 768px) {
    .mmp-form {
        max-width: 100%;
    }
    
    .mmp-tab-list {
        flex-wrap: wrap;
    }
    
    .mmp-actions-table {
        font-size: 12px;
    }
    
    .mmp-actions-table th,
    .mmp-actions-table td {
        padding: 8px;
    }
}
