body {
    margin: 0;
    padding: 0;
}

.github-readme-bg {
    background: linear-gradient(180deg, #100025 40%, #110141 100%), #D9D9D9;
    transition: background 0.3s ease-in-out;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.github-readme-bg-stars {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0 auto;
    padding: 50px 150px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Navbar */
.github-readme-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0px 35px 0px;
}

.github-readme-navbar img {
    height: 30px;
}

.github-readme-navbar h1 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.github-readme-log-in-btn {
    background-color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.github-readme-log-in-btn:hover {
    background-color: #f2f2f2;
    transform: translateY(-2px);
}

.github-readme-log-in-btn i {
    margin-left: 6px;
}

/* Mobile Navbar */
.github-readme-mobile-navbar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}

.github-readme-mobile-navbar img {
    height: 32px;
}

.github-readme-menu-icon {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.github-readme-mobile-menu-active {
    left: 0;
}

/* Breadcrumb */
.github-readme-header-breadcrumb {
    display: flex;
    align-items: center;
}

.github-readme-header-breadcrumb a {
    text-decoration: none;
}

.github-readme-breadcrumb-tools {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    letter-spacing: -0.4px;
}

.github-readme-header-breadcrumb i {
    color: white;
    margin: 0 8px;
}

.github-readme-breadcrumb {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Main Container */
.github-readme-container {
    display: flex;
    width: 100%;
    gap: 20px;
    margin-top: 20px;
}

/* Form Container */
.github-readme-form-container {
    flex: 1;
    background: #1e1e2f;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    max-height: 80vh;
}

.github-readme-form-header {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.github-readme-form-group {
    margin-bottom: 20px;
}

.github-readme-form-label {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.github-readme-form-input,
.github-readme-form-textarea,
.github-readme-form-select {
    width: 100%;
    background: #272a3d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    color: white;
    font-size: 14px;
    transition: all 0.2s ease;
}

.github-readme-form-input:focus,
.github-readme-form-textarea:focus,
.github-readme-form-select:focus {
    border-color: #6E00FF;
    outline: none;
    box-shadow: 0 0 0 2px rgba(110, 0, 255, 0.25);
}

.github-readme-form-textarea {
    min-height: 100px;
    resize: vertical;
    color: white !important;
}

/* Skills Section */
.github-readme-skills-container {
    display: flex;
    flex-wrap: wrap;
    max-height: 200px;
    overflow-y: auto;
    padding-right: 5px;
}

.github-readme-skill-item {
    display: flex;
    align-items: center;
    background: rgb(255 255 255 / 3%) !important;
    border-radius: 10px;
    padding: 8px 15px;
    color: white;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.github-readme-skill-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.github-readme-skill-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

.github-readme-skill-name {
    margin-right: 8px;
    font-weight: 500;
}

.github-readme-skill-remove {
    margin-left: 5px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
}

.github-readme-skill-remove:hover {
    color: #ff4d4d;
}

.github-readme-add-skill {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* Social Links */
.github-readme-socials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.github-readme-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 0 calc(50% - 15px);
    /* Two columns with gap in between */
    min-width: 200px;
}

.github-readme-social-item i {
    font-size: 18px;
    color: #6E00FF;
    width: 24px;
    text-align: center;
}

/* Preview Container */
.github-readme-preview-container {
    flex: 1;
    background: #1e1e2f;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 20px;
    overflow-y: auto;
    max-height: 80vh;
}


.github-readme-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.github-readme-preview-actions {
    display: flex;
    gap: 10px;
}

.github-readme-preview-content {
    background: #272a3d;
    border-radius: 8px;
    padding: 20px;
    color: white;
    font-size: 14px;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    overflow-wrap: break-word;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
}

.github-readme-rendered-preview {
    background: #272a3d;
    border-radius: 8px;
    padding: 20px;
    color: white !important;
    font-size: 14px;
    overflow-y: auto;
    max-height: calc(80vh - 100px);
    display: none;
}

.github-readme-rendered-preview.active {
    display: block;
}

.github-readme-preview-content.hidden {
    display: none;
}

.github-readme-copy-btn,
.github-readme-download-btn {
    background: #6E00FF;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s ease;
}

.github-readme-copy-btn:hover,
.github-readme-download-btn:hover {
    background: #5400c7;
}

/* Preview toggle */
.github-readme-preview-toggle {
    display: flex;
    margin-bottom: 15px;
    background: #2f3349;
    border-radius: 8px;
    padding: 3px;
    width: fit-content;
}

.github-readme-toggle-btn {
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100px;
    text-align: center;
}

.github-readme-toggle-btn.active {
    background: #6E00FF;
    color: #ffffff !important;
}


/* Projects section */
.github-readme-projects-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    padding-bottom: 20px;
}

.github-readme-project-item {
    background: rgba(110, 0, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid #6E00FF;
    color: white;
    position: relative;
    z-index: 0;
}

.github-readme-project-item:hover {
    background: rgba(110, 0, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.github-readme-project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.github-readme-project-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.github-readme-project-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
}

.github-readme-project-remove:hover {
    color: #ff4d4d;
    background: rgba(255, 77, 77, 0.1);
}

.github-readme-project-remove i {
    font-size: 16px;
    display: block;
}

/* Theme options */
.github-readme-theme-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.github-readme-theme-option {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.github-readme-theme-option:hover {
    transform: scale(1.1);
}

.github-readme-theme-option.active {
    box-shadow: 0 0 0 2px white, 0 0 0 4px #6E00FF;
}

/* Rendered markdown styles */
.github-readme-rendered-preview h1 {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    margin-top: 0;
}

.github-readme-rendered-preview h2 {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
}

.github-readme-rendered-preview h3 {
    color: #e4e4e4;
}

.github-readme-rendered-preview a {
    color: #6E00FF;
    text-decoration: none;
}

.github-readme-rendered-preview a:hover {
    text-decoration: underline;
}

.github-readme-rendered-preview img {
    max-width: 100%;
    max-height: 250px;
    border-radius: 5px;
    object-fit: contain;
}

.github-readme-rendered-preview ul {
    padding-left: 20px;
}

.github-readme-rendered-preview li {
    margin-bottom: 5px;
}

.github-readme-rendered-preview code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 5px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

.github-readme-form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.github-readme-form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #6E00FF;
}

/* Skills dropdown */
.github-readme-skill-dropdown {
    position: relative;
    width: 100%;
}

.github-readme-skill-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #2f3349;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
}

.github-readme-skill-suggestions.active {
    display: block;
}

.github-readme-skill-suggestion-item {
    display: flex;
    align-items: center;
    padding: 8px 15px;
    cursor: pointer;
    color: white;
    transition: background 0.2s ease;
}

.github-readme-skill-suggestion-item:hover {
    background: rgba(110, 0, 255, 0.2);
}

.github-readme-skill-suggestion-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

/* Rendered preview social icons */
.github-readme-rendered-preview p a {
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 8px;
}

.github-readme-rendered-preview p a img {
    display: inline-block;
}

/* Responsive */
@media (max-width: 1024px) {
    .github-readme-bg-stars {
        padding: 50px 100px;
    }
}

@media (max-width: 900px) {
    .github-readme-bg-stars {
        padding: 50px;
    }
}

@media (max-width: 768px) {
    .github-readme-navbar {
        display: none;
    }

    .github-readme-mobile-navbar {
        display: flex;
    }

    .github-readme-bg-stars {
        padding: 20px;
    }

    .github-readme-container {
        flex-direction: column;
    }

    .github-readme-form-container,
    .github-readme-preview-container {
        max-height: none;
    }

    .github-readme-preview-actions {
        flex-wrap: wrap;
    }

    .github-readme-preview-content,
    .github-readme-rendered-preview {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .github-readme-bg-stars {
        padding: 15px;
    }

    .github-readme-form-header,
    .github-readme-preview-header {
        font-size: 18px;
    }
}

.github-readme-add-button {
    background: #6E00FF;
    color: white;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.github-readme-add-button:hover {
    background: #5400c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.github-readme-add-button i {
    font-size: 16px;
}

/* Modern Checkbox Styles */
.github-readme-form-check {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 0;
}

.github-readme-custom-checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.github-readme-custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.github-readme-checkmark {
    position: relative;
    height: 24px;
    width: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: inline-block;
    transition: all 0.3s ease;
}

.github-readme-checkmark:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    transition: all 0.3s ease;
}

.github-readme-custom-checkbox input:checked+.github-readme-checkmark {
    background-color: #6E00FF;
}

.github-readme-custom-checkbox input:checked+.github-readme-checkmark:after {
    left: 25px;
}

.github-readme-custom-checkbox input:focus+.github-readme-checkmark {
    box-shadow: 0 0 0 2px rgba(110, 0, 255, 0.25);
}

.github-readme-custom-checkbox span {
    margin-left: 8px;
    font-size: 14px;
    color: white;
}

/* Collapsible Project Structure */
.github-readme-collapsible {
    background: #272a3d;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: visible;
}

.github-readme-collapsible-header {
    background: #2f3349;
    padding: 12px 15px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.github-readme-collapsible-header:hover {
    background: #373b56;
}

.github-readme-collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 15px;
}

.github-readme-collapsible-content.active {
    max-height: 800px;
    padding: 15px;
    overflow: visible;
}

.github-readme-collapsible-icon {
    transition: transform 0.2s ease;
}

.github-readme-collapsible-icon.active {
    transform: rotate(180deg);
}

/* Enhanced Skill Input */
.github-readme-custom-url-input {
    margin-top: 10px;
    display: none;
}

.github-readme-custom-url-input.active {
    display: flex;
    gap: 10px;
    align-items: center;
}

.github-readme-custom-url-toggle {
    font-size: 12px;
    color: white;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 5px;
    display: inline-block;
}

.github-readme-custom-url-toggle:hover {
    color: #5400c7;
}

/* Accordion for form sections */
.github-readme-accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #272a3d;
}

.github-readme-accordion-header {
    padding: 15px;
    background: #2f3349;
    color: white;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease;
}

.github-readme-accordion-header:hover {
    background: #373b56;
}

.github-readme-accordion-content {
    padding: 15px;
    display: none;
    transition: all 0.3s ease;
}

.github-readme-accordion-content.active {
    display: block;
}

/* Add project button */
.github-readme-add-project-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.github-readme-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.github-readme-projects-title {
    font-weight: 600;
    color: white;
}

@media (max-width: 580px) {
    .github-readme-add-skill {
        flex-direction: column;
    }

    .github-readme-custom-url-input.active {
        flex-direction: column;
    }
}

/* Scrollbar animation keyframes */
@keyframes scrollbar-shine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Common scrollable area styles */
.scrollable-area {
    scrollbar-width: thin;
    scrollbar-color: rgba(110, 0, 255, 0.5) rgba(39, 42, 61, 0.3);
}

/* Main containers get slightly wider scrollbars */
.github-readme-form-container.scrollable-area::-webkit-scrollbar,
.github-readme-preview-container.scrollable-area::-webkit-scrollbar {
    width: 8px;
}

/* Inner containers get thinner scrollbars */
.github-readme-skills-container.scrollable-area::-webkit-scrollbar,
.github-readme-projects-container.scrollable-area::-webkit-scrollbar,
.github-readme-preview-content.scrollable-area::-webkit-scrollbar,
.github-readme-rendered-preview.scrollable-area::-webkit-scrollbar {
    width: 6px;
}

.scrollable-area::-webkit-scrollbar-track {
    background: rgba(39, 42, 61, 0.3);
    border-radius: 10px;
    margin: 5px 0;
}

.scrollable-area::-webkit-scrollbar-thumb {
    background: rgba(110, 0, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(39, 42, 61, 0.3);
}

.scrollable-area::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, rgba(110, 0, 255, 0.6), rgba(153, 51, 255, 0.9), rgba(110, 0, 255, 0.6));
    background-size: 200% 200%;
    animation: scrollbar-shine 3s ease infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 8px rgba(110, 0, 255, 0.7);
}

/* Improve focus states for form elements within projects */
.github-readme-collapsible .github-readme-form-input:focus,
.github-readme-collapsible .github-readme-form-textarea:focus {
    border-color: #6E00FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(110, 0, 255, 0.3);
}

/* Active project highlighting */
.github-readme-collapsible.active-project {
    box-shadow: 0 0 10px rgba(110, 0, 255, 0.3);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.github-readme-skill-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    margin-left: 6px;
    transition: all 0.2s ease;
}

.github-readme-skill-remove-btn:hover {
    background-color: rgba(255, 0, 0, 0.2);
}

.github-readme-skill-remove-btn i {
    color: #ff4444;
    font-size: 14px;
}

.github-readme-skill-item {
    display: inline-flex;
    align-items: center;
    margin: 8px 10px 2px 0;
    padding: 6px 10px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.github-readme-skill-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.pomodoro-mobile-navigation-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #110140;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 999;
    gap: 30px;
}

.pomodoro-mobile-navigation-menu.show {
    height: 200px;
    overflow: visible;
}

.pomodoro-mobile-navigation-logo {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.pomodoro-mobile-navigation-menu.show .pomodoro-mobile-navigation-logo {
    display: block;
    opacity: 1;
}

.pomodoro-menu-icon {
    transition: transform 0.3s ease;
}

.ri-close-line {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    transform-origin: center;
}

@media (max-width: 930px) {
    .pomodoro-menu-icon {
        display: block;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        position: relative;
        z-index: 1100;
    }

    .pomodoro-navigation-login-btn {
        display: inline-block;
        padding: 8px 16px;
        border-radius: 64px;
        border: 1px solid rgba(218, 218, 218, 0.30);
        background: #220554;
        color: #fff;
        cursor: pointer;
        font-size: 16px;
        width: 100%;
        max-width: 90%;
        transition: transform 0.2s ease;
        font-weight: 600;
        text-align: center;
    }
}

.pomodoro-navbar h1 {
    margin-left: -123px !important;
}


.github-readme-step-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.github-readme-step-item:hover {
    transform: translateY(-5px);
}

.github-readme-step-circle {
    background: #6E00FF;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    float: left;
}

.github-readme-step-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
    display: flex;
    align-items: center;
}

.github-readme-step-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    clear: both;
    padding-top: 0.5rem;
}

@media (max-width: 768px) {
    .col-md-6 {
        margin-bottom: 1rem !important;
    }

    .github-readme-step-item {
        padding: 1.25rem;
    }
}


.password-generator-faq-container {
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
}

.password-generator-faq-item {
    margin-bottom: 8px;
}

.password-generator-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 24px 0;
    font-size: 18px;
    color: #100025;
    font-weight: 500;
    line-height: 28px;
    font-family: 'Inter', sans-serif;
}

.password-generator-faq-answer {
    display: none;
    font-size: 16px;
    font-weight: 400;
    color: #6E7D88;
    line-height: 24px;
}

.password-generator-faq-answer li {
    list-style-type: unset !important;
}
.password-generator-faq-answer ul {
    margin-left: 20px !important;
}

.password-generator-faq-answer ol {
    margin-left: 20px !important;
}

.password-generator-divider {
    border: 0;
    border-top: 0.1px solid #EEE;
    margin: 0;
}
