/* UBEC Applications List Styling */
:root {
    --ubec-forest: #2d5016;
    --ubec-sage: #3d8b6e;
    --ubec-teal: #5BB5B0;
    --ubec-amethyst: #7c3a6b;
    --ubec-sky: #87CEEB;
}

/* Header Customization */
.head {
    background: linear-gradient(90deg, var(--ubec-forest) 0%, var(--ubec-sage) 50%, var(--ubec-teal) 100%) !important;
    border-bottom: 3px solid var(--ubec-teal);
}

/* Override Mapbender header */
body {
    background: linear-gradient(135deg, var(--ubec-forest) 0%, var(--ubec-sage) 35%, var(--ubec-teal) 65%, var(--ubec-sky) 100%);
    min-height: 100vh;
}

/* Main content wrapper */
#content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    max-width: 1200px;
}

/* Applications title */
.contentTitle {
    color: var(--ubec-forest);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--ubec-teal);
    padding-bottom: 1rem;
}

/* Application cards */
.application {
    background: white;
    border: 2px solid var(--ubec-sage);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.application:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--ubec-teal);
}

.application .title {
    color: var(--ubec-forest);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.application .description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Screenshot */
.application .screenshot {
    border: 2px solid var(--ubec-sage);
    border-radius: 8px;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.application .screenshot:hover {
    transform: scale(1.05);
}

/* Filter input */
#listFilterInput {
    border: 2px solid var(--ubec-sage);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#listFilterInput:focus {
    outline: none;
    border-color: var(--ubec-teal);
    box-shadow: 0 0 0 3px rgba(91, 181, 176, 0.1);
}

/* Login link */
.right a {
    color: var(--ubec-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.right a:hover {
    color: var(--ubec-forest);
}
