/* Eski tasarimdaki Site.css > .main stillerini kaldirmak icin*/
.main {
    width: 100%;
    background-color: #f6f8fa;
    min-height: calc(100vh - 132px - 48px - 1px); /*navbar height - footer height substracted */
}

/* Page Container */
.page-container {
    padding-left: 92px;
    padding-right: 92px;
    padding-top: 24px;
    min-height: calc(100vh - 181px);
}

/* Main Title */
.welcome-title {
    font-family: "Inter Display", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    font-feature-settings: "cv09" on, "ss11" on, "calt" off, "liga" off;
    color: #0e121b;
    margin-top: 0;
    margin-bottom: 20px;
    font-variant: normal !important;
}

/* Card Container */
.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px; /* Vertical gap between rows */
    column-gap: 24px; /* Horizontal gap between columns */
}

/* Radio Card Container */
.radio-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 16px;
    gap: 14px;
    width: 100%;
    height: 100px;
    background: #ffffff;
    border: 1px solid #e1e4ea;
    box-shadow: 0px 1px 2px rgba(10, 13, 20, 0.03);
    border-radius: 12px;
}

/* Icon Container */
.key-icon {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    box-shadow: 0px 1px 2px rgba(10, 13, 20, 0.03);
    flex-shrink: 0;
}

/* Icon Colors */
.icon-approved {
    background: #e8fed3;
    border: 1px solid #d7fcb3;
}

/* Icon Colors */
.icon-new {
    background: #EBF8FF;
    border: 1px solid #C0EAFF;
}

.icon-pending {
    background: #fff1eb;
    border: 1px solid #ffd5c0;
}

.icon-rejected {
    background: #ffebec;
    border: 1px solid #ffc0c5;
}

.icon-team {
    background: #fffaeb;
    border: 1px solid #ffecc0;
}

/* Text Container */
.text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 4px;
    flex: 1;
}

/* Title */
.card-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 4px;
    height: 24px;
}

.card-label {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.011em;
    font-feature-settings: "cv09" on, "ss11" on, "calt" off, "liga" off;
    color: #0e121b;
}

/* Description */
.card-description {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    font-feature-settings: "cv09" on, "ss11" on, "calt" off, "liga" off;
    color: #525866;
}

    .card-description .click-link {
        color: #0e121b;
        text-decoration: underline;
        cursor: pointer;
    }

/* Icon Colors */
.icon-approved svg {
    color: #8ac054;
}

.icon-pending svg {
    color: #e57737;
}

.icon-rejected svg {
    color: #fb3748;
}

.icon-team svg {
    color: #f6b51e;
}

/* Card Wrapper */
.card-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
}

.main {
    padding: 0;
    margin: 0;
}

/* Tablet Responsive */
@media screen and (max-width: 1024px) {
    .page-container {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 24px;
    }
    
    .cards-container {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 16px;
        row-gap: 16px;
    }
    
    .radio-card {
        padding: 12px;
        height: auto;
        min-height: 100px;
    }
}

/* Tablet Portrait ve Küçük Tablet */
@media screen and (max-width: 768px) {
    .page-container {
        padding-left: 16px;
        padding-right: 16px;
        padding-top: 16px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        column-gap: 0;
        row-gap: 12px;
    }
    
    .welcome-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 16px;
    }
    
    .radio-card {
        padding: 16px;
        height: auto;
        min-height: 90px;
    }
    
    .key-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .card-label {
        font-size: 14px;
        line-height: 20px;
    }
    
    .card-description {
        font-size: 11px;
        line-height: 14px;
    }
}

/* Mobil */
@media screen and (max-width: 480px) {
    .page-container {
        padding-left: 12px;
        padding-right: 12px;
        padding-top: 12px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }
    
    .welcome-title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 12px;
    }
    
    .radio-card {
        padding: 12px;
        min-height: 80px;
        flex-direction: row;
        gap: 12px;
    }
    
    .key-icon {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
    
    .key-icon img {
        width: 20px;
        height: 20px;
    }
    
    .card-label {
        font-size: 14px;
        line-height: 18px;
    }
    
    .card-description {
        font-size: 11px;
        line-height: 14px;
    }
}