/*
----------------------------------------------------
© A Kevin.PW project - All rights reserved 2009-2025
All cool kids from the 90's know how to code.
----------------------------------------------------
*/

/*
----------------------------------------------------
© A Kevin.PW project - All rights reserved 2009-2025
All cool kids from the 90's know how to code.
----------------------------------------------------
*/

/* Custom Styles */
body {
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background-color: #1a1a1a; /* Darker variant of #5271FF */
}

::-webkit-scrollbar-thumb {
    background-color: #5271FF;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #3a5bbf;
}

/* Text Transform Container */
.text-transform-container {
    background-color: #111111;
    max-width: 800px; /* Set max width to 800px */
    width: 100%;
    padding: 20px;
    border-radius: 8px;
    margin: 0 auto; /* Center the container */
}

/* Input and Output Fields */
.d-flex.gap-3.mb-4 {
    display: flex;
    gap: 20px;
}

textarea.form-control,
.output {
    width: 350px; /* Set width to 350px */
}

.output {
    font-size: 20px;
    word-wrap: break-word;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    height: 150px; /* Set a fixed height for consistency */
}

/* Copy Button */
#copyButton {
    font-size: 16px;
    background-color: #28a745; /* Green color */
    border: none;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Make the button full width */
}

#copyButton:hover {
    background-color: #218838; /* Darker green on hover */
}

/* Notification */
#notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Footer */
footer {
    background-color: #111111;
    padding: 10px;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-container {
    max-width: 800px; /* Set max width to 800px */
    width: 100%;
    margin: 0 auto; /* Center the footer */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Add padding for spacing */
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.copyright {
    margin: 0;
}

/* Modals */
.modal-content {
    background-color: #111111;
    color: #ffffff;
}

.modal-header {
    border-bottom: 1px solid #333;
}

.modal-footer {
    border-top: 1px solid #333;
}