/* Custom styles for Project Manager */

/* General styling */
body {
    background-color: #f8f9fa;
}

/* Card styling */
.project-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.project-card .card-header {
    color: white;
    font-weight: bold;
    padding: 12px 15px;
}

.project-card .card-body {
    padding: 20px;
}

/* Project status badges */
.badge-status {
    font-size: 0.8em;
    padding: 5px 10px;
    border-radius: 20px;
}

.badge-inprogress {
    background-color: #f39c12;
}

.badge-completed {
    background-color: #27ae60;
}

.badge-testing {
    background-color: #3498db;
}

/* Progress bar customization */
.progress {
    height: 10px;
    border-radius: 5px;
    margin: 10px 0;
}

/* Project detail sections */
.project-details h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-top: 30px;
}

/* Changelog styling */
.changelog-item {
    border-left: 3px solid #3498db;
    padding-left: 15px;
    margin-bottom: 20px;
}

.changelog-version {
    font-weight: bold;
    color: #3498db;
}

.changelog-date {
    font-size: 0.8em;
    color: #7f8c8d;
}

/* Login page */
.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

/* Dashboard stats */
.stats-card {
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    text-align: center;
    color: white;
}

.stats-card .stats-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.stats-card .stats-number {
    font-size: 1.8em;
    font-weight: bold;
}

.stats-card .stats-label {
    font-size: 1em;
    text-transform: uppercase;
}

/* Mobile responsive tweaks */
@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 18px;
    }
    
    .project-card {
        margin-bottom: 15px;
    }
    
    .stats-card .stats-icon {
        font-size: 2em;
    }
    
    .stats-card .stats-number {
        font-size: 1.5em;
    }
} 