.page-content-parent {
    padding-top: 150px;
}

body{
    height: 100%;
}

.btn {
    border-radius: 0.5rem !important;  /* more rounded */
}

.card {
    border-radius: 1rem !important;
    overflow: hidden;  /* makes inner parts follow the curve */
}

.navbar {
    background-color: rgba(255, 255, 255, 0.75) !important; /* light semi-transparent */
    backdrop-filter: blur(5px); /* optional: gives a frosted glass effect */
}

.site-logo {
    width: 64px !important;
    height: 64px !important;
}

.site-logo-free-width {
    height: 64px !important;
}

.brand-text {
    font-size: 3rem !important; /* Big brand name */
}

@media (max-width: 576px) {
    .site-logo {
        width: 40px !important;
        height: 40px !important;
    }
    .site-logo-free-width {
        height: 40px !important;
    }
    .brand-text {
        font-size: 1.5rem !important;
    }
    .logout-icon {
        width: 32px !important;
        height: 32px !important;
    }
    .navbar .btn {
        font-size: 0.85rem !important;
        padding: 0.3rem 0.8rem !important;
    }
}


/* Download button styling */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: left;
    padding: 1.2rem;
    border-radius: 1rem !important;
    width: 75%;  /* default for laptop/desktop */
    font-weight: bold;
    font-size: 1.2rem;
}

.download-btn i {
    font-size: 2rem !important;
}

.download-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.download-btn .btn-main {
    font-size: 1.5rem;   /* bigger line */
}

.download-btn .btn-sub {
    font-size: 0.9rem;   /* smaller line */
    font-weight: normal;
    opacity: 0.9;
}

/* On mobile: make full width */
@media (max-width: 768px) {
    .download-btn {
        width: 100%;
    }
}