/* Base Styles */
.sud-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Card Styles */
.sud-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sud-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.sud-card-header {
    background: #88ad35;
    color: white;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sud-card-header h3 {
    margin: 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.sud-card-header i {
    margin-right: 10px;
    font-size: 1.1em;
}

.sud-card-body {
    padding: 20px;
}

/* User Details Styles */
.sud-detail-row {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

.sud-detail-row:last-child {
    border-bottom: none;
}

.sud-detail-label {
    flex: 0 0 150px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
}

.sud-detail-label i {
    margin-right: 8px;
    width: 20px;
    text-align: center;
    color: #3498db;
}

.sud-detail-value {
    flex: 1;
}

/* Projects Grid */
.sud-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.sud-project-card {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 15px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.sud-project-card:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.sud-project-title {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 1.1em;
}

.sud-project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.85em;
}

.sud-project-status {
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8em;
    text-transform: capitalize;
}

.sud-status-completed {
    background-color: #d4edda;
    color: #155724;
}

.sud-status-in-progress {
    background-color: #fff3cd;
    color: #856404;
}

.sud-status-pending {
    background-color: #e2e3e5;
    color: #383d41;
}

.sud-status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.sud-project-date {
    color: #666;
    display: flex;
    align-items: center;
}

.sud-project-date i {
    margin-right: 5px;
}

.sud-project-description {
    font-size: 0.9em;
    color: #555;
    margin-top: 10px;
}

/* Notice Styles */
.sud-notice {
    padding: 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.sud-notice-info {
    background-color: #e7f5fe;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.sud-notice-error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sud-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .sud-detail-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sud-detail-label {
        margin-bottom: 5px;
    }
    
    .sud-project-meta {
        flex-direction: column;
    }
    
    .sud-project-status {
        margin-bottom: 5px;
        align-self: flex-start;
    }
}