/* Main Layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e2124;
    color: white;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #333;
    background: linear-gradient(135deg, #1e2124 0%, #2c2f33 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    margin-right: 10px;
    margin-left: 25px;
}

.logo-image {
    max-height: 50px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.login-link {
    color: #18c851;
    text-decoration: none;
    font-size: 18px;
}

.login-link:hover {
    text-decoration: underline;
}

.my-account-btn {
    color: #18c851;
    text-decoration: none;
    font-size: 18px;
}

.my-account-btn:hover {
    text-decoration: underline;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: #1e2124;
    background-color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    background-color: #18c851;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 200, 81, 0.3);
    border-color: #18c851;
}

/* Form Container */
.form-container {
    background-color: #ffffff;
    border-radius: 8px;
    width: 220px;
    padding: 15px;
    margin-right: 20px;
    color: #333;
}

/* Form Elements */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.color-input {
    display: flex;
    align-items: center;
}

.color-preview {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
}

.font-size-slider {
    width: 100%;
    margin-top: 5px;
}

.font-size-value {
    display: inline-block;
    margin-left: 5px;
}

.file-input {
    margin-top: 5px;
}

.send-button {
    background-color: #18c851;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 0;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.send-button:hover {
    background-color: #15a845;
}

/* Preview Area */
.preview-area {
/* Preview Area */
    color: #000000;
    padding: 40px;
    border-radius: 8px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    text-align: center;
    min-height: 200px;
}

/* Flex Layout */
.main-content {
    display: flex;
    margin-top: 20px;
}

/* Queue Info Styling */
.queue-info {
    background-color: #2a2d31 !important;
    border: 1px solid #444 !important;
    color: white !important;
}

.progress-container {
    background-color: #444 !important;
}

.progress-bar {
    background-color: #18c851 !important;
}

.download-btn {
    background-color: #18c851 !important;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #15a845 !important;
}

/* Completed Videos Section */
.completed-videos {
    background-color: #2a2d31;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.completed-videos h2 {
    color: white;
    margin-top: 0;
}

.completed-videos ul {
    list-style-type: none;
    padding: 0;
}

.completed-videos li {
    padding: 10px 0;
    border-bottom: 1px solid #444;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }
    
    .form-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
} 