/* Grant Application Use Case Page Styles */

/* Screenshot Placeholders */
.screenshot-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.screenshot-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.screenshot-placeholder p {
    margin: 1rem 0 0 0;
    max-width: 500px;
}

/* Metric Cards */
.metric-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.metric-description {
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .screenshot-placeholder {
        min-height: 300px;
        padding: 3rem 1.5rem;
    }
    
    .screenshot-placeholder i {
        font-size: 2.5rem;
    }
    
    .metric-value {
        font-size: 2.5rem;
    }
}
