/* /Components/AppButton.razor.rz.scp.css */
.app-button[b-qlcxkiijek] {
    border: none;

    padding: 10px 18px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 0.95rem;
    font-weight: 600;

    transition:
        background-color 0.2s ease,
        transform 0.15s ease;
}

.app-button:hover[b-qlcxkiijek]{
    transform: translateY(-1px);
}

    .app-button:disabled[b-qlcxkiijek] {
        opacity: 0.7;

        cursor: not-allowed
    }

.botton-loading[b-qlcxkiijek] {
    display: flex;
    align-items: center;
    gap: 8px;
}


.primary[b-qlcxkiijek]{
    background: #2563eb;
    color: white;
}

.secondary[b-qlcxkiijek]{
    background-color: #6b7280;
    color: white;
}

.danger[b-qlcxkiijek]{
    background: #dc2626;
    color: white;
}
/* /Components/AppInput.razor.rz.scp.css */
.app-input[b-zza4uldvaj]{
   display:flex;

   flex-direction: column;

   gap: 8px;

   margin-bottom: 20px;
}

.app-input-label[b-zza4uldvaj]{
    font-weight: 600;
}

.app-input-field[b-zza4uldvaj]{
    padding: 8px 8px;

    border: 1px solid #d1d5db;

    border-radius: 10px;

    background: var(--surface-color);

    color: var(--text-color);

    font-size: 1rem;
}

.app-input-field:focus[b-zza4uldvaj]{
    outline: none;

    border-color: #2563eb;

    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}
/* /Components/AppTextarea.razor.rz.scp.css */
.app-input[b-jkwqo7kk0l] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.app-input-label[b-jkwqo7kk0l] {
    font-weight: 600;
}

.app-input-field[b-jkwqo7kk0l] {
    width: 100%;
    min-height: 140px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    background: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
    resize: vertical;
    box-sizing: border-box;
}

    .app-input-field:focus[b-jkwqo7kk0l] {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
    }

/*.app-input-field {
    min-height: 140px;
    resize: vertical;
    width: 100%;
    box-sizing: border-box;

}

.app-input{*/
    /*margin-top: 24px;*/
/*}*/

/*textarea.app-input-field {

    min-height: 140px;
    resize: vertical;*/

    /*width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;*/ /* Allow vertical resizing */
/*}*/
/* /Components/Card.razor.rz.scp.css */
.card[b-3zrcov52mo] {
    background: var(--card-background);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow-color);
    margin-bottom: 20px;
    overflow-wrap: break-word;
    color: var(--text-color);
}

.card-header[b-3zrcov52mo] {
    margin-bottom: 16px;
}

.card-title[b-3zrcov52mo] {
    margin-top: 0;
    margin-bottom: 12px;

    font-size: 1.2em;
}

.card-content[b-3zrcov52mo] {
    display:flex;
    flex-direction: column;
    gap: 16px;
    line-height: 1.6;
}
/* /Components/ExpandableCard.razor.rz.scp.css */
.expandable-content[b-c8impon715] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .expandable-content[b-c8impon715] .app-button {
        /*width: fit-content;*/
        align-self: flex-start;
    }

.expanded-section[b-c8impon715] {
    padding-top: 12px;
    border-top: 1px solid var(--shadow-color);
}
/* /Components/LoadingSpinner.razor.rz.scp.css */
.loading-spinner[b-oy88q7hrcb] {
    width: 50px;
    height: 50px;

    border-radius: 50%;
    
    border: 5px solid rgba(255,255,255,0.2);
    
    border-top-color: var(--text-color);
    
    animation: spin-b-oy88q7hrcb 0.8s linear infinite;

    margin: 30px auto;
}

@keyframes spin-b-oy88q7hrcb{
    from{
        transform:rotate(0deg);
    }

    to{
        transform: rotate(360deg);
    }
}
/* /Components/Modal.razor.rz.scp.css */
.modal-overlay[b-uj2kbci5hn] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
    animation: fade-in-b-uj2kbci5hn 0.35s ease;
}

.modal-container[b-uj2kbci5hn] {
    background: var(--card-background);
    color: var(--text-color);
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modal-enter-b-uj2kbci5hn 0.35s ease;
}

.modal-header[b-uj2kbci5hn] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title[b-uj2kbci5hn] {
    margin: 0;
}

.modal-close[b-uj2kbci5hn] {
    border: none;
    background: transparent;
    color: var(--text-color);
    font-size: 1.4rem;
    cursor: pointer;
}

.modal-content[b-uj2kbci5hn] {
    line-height: 1.6;
}

@keyframes fade-in-b-uj2kbci5hn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modal-enter-b-uj2kbci5hn {
    from { 
        opacity: 0;
        
        transform: 
            scale(0.95)
            translateY(10px);
    }

    to {
        opacity: 1;

        transform: 
            scale(1) 
            translateY(0);
    }
}
/* /Components/NavMenu.razor.rz.scp.css */
.top-nav[b-r85xl55emj] {
    background-color: var(--nav-background);
    padding: 14px 20px;
    display: flex;
    gap: 18px;
}

    .top-nav[b-r85xl55emj]  a {
        color: var(--nav-text);
        text-decoration: none;
        font-weight: 500;
    }

        .top-nav[b-r85xl55emj]  a.active {
            color: var(--nav-text-active);
        }


@media (max-width: 768px) {
    
    .top-nav[b-r85xl55emj] {
        flex-wrap: wrap;
        gap: 12px;
    }
}
/* /Components/PageSection.razor.rz.scp.css */
.page-section[b-jbn9z2fqv9] {
    margin-bottom: 48px;
}
/* /Components/SectionTitle.razor.rz.scp.css */
.section-title[b-zmtr3sr6gv] {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.section-subtitle[b-zmtr3sr6gv]{
    color: var(--muted-text-color);
    margin-top: 0;
}


@media (max-width: 768px) {

    .section-title[b-zmtr3sr6gv] {
        font-size: 1.6rem;
    }
}
/* /Components/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-5odmolz009] {
    background: var(--card-background);
    color: var(--text-color);
    
    border: 1px solid var(--muted-text-color);
    
    padding: 8px 14px;
    border-radius: 8px;
    
    cursor: pointer;
}
/* /Components/Toast.razor.rz.scp.css */
.toast[b-966hrsdn2l] {
    padding: 14px 18px;
    border-radius: 10px;
    color: white;
    min-width: 240px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: toast-enter-b-966hrsdn2l 0.3s ease;
}

.info[b-966hrsdn2l]{
    background: #2563eb;
}

.success[b-966hrsdn2l] {
    background: #16a34a;
}

.warning[b-966hrsdn2l] {
    background: #d97706;
}

.error[b-966hrsdn2l] {
    background: #dc2626;
}

.toast.closing[b-966hrsdn2l]{
    animation: toast-exit-b-966hrsdn2l 0.3s ease forwards;
}

@keyframes toast-enter-b-966hrsdn2l{

    from{
        opacity: 0;

        transform: translateX(30px);
    }

    to {
        opacity: 1;

        transform: translateX(0);
    }
}

@keyframes toast-exit-b-966hrsdn2l{

    from{
        opacity: 1;

        transform: translateX(0);
    }

    to{
        opacity:0;

        transform: translateX(30px);
    }
}


/* /Components/ToastContainer.razor.rz.scp.css */
.toast-container[b-0m92pdsvay] {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 2000;
}
/* /Pages/ComponentShowcase.razor.rz.scp.css */
.component-grid[b-io7i39ej07] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.custom-header[b-io7i39ej07] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

    .custom-header h3[b-io7i39ej07] {
        margin: 0;
    }
/* /Pages/Projects.razor.rz.scp.css */
.project-grid[b-yz508dc1y5] {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    
    gap: 20px;
}

.project-action[b-yz508dc1y5]{
    display: flex;
    justify-content: flex-start;
}
/* /Pages/TestArea.razor.rz.scp.css */
.hero[b-r764linrmj] {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg,#4f46e5, #9333ea);
    color: white;
}

.content[b-r764linrmj] {
    padding: 40px 20px;
    max-width: 800px;
    margin: auto;
}

h1[b-r764linrmj]{
    color: white;
}
