/* Project Cards with Modern Styling */
.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.project-card .mt-auto {
    margin-top: auto !important;
}

.project-card .border-top {
    border-top: 1px solid rgba(0,0,0,0.1) !important;
}

.project-card .btn-outline-primary {
    transition: all 0.2s ease;
}

.project-card .btn-outline-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Development plan specific styling */
.development-plan {
    background: #f5f5f5 !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.phase-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.phase-title {
    color: #343a40;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.phase-title i {
    flex-shrink: 0;
}

.phase-title span {
    flex: 1;
}

.task-item {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.task-item:last-child {
    margin-bottom: 0;
}

.task-time {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    text-align: center;
    background-color: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.tools-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
}

.tool-badge {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}

.success-criteria {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    margin-top: 0.75rem;
}

.resources-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.resource-item {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.resource-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.resource-name {
    font-weight: 600;
    color: #856404;
    margin-bottom: 0.25rem;
}

.resource-type {
    font-size: 0.75rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
}

.resource-link:hover {
    text-decoration: none;
    color: inherit;
}

.resource-link:hover .resource-name {
    color: #007bff;
    text-decoration: underline;
}

.resource-link .resource-name {
    transition: all 0.2s ease;
    cursor: pointer;
}
