:root {
    --bs-primary: #6f42c1;
    --bs-secondary: #d3adf7;
}

.navbar {
    background-color: #6f42c1 !important;
}

.btn-primary, .btn-secondary {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: #5a32a3;
    border-color: #5a32a3;
}

.bg-primary-gradient {
    background: linear-gradient(to right, #6f42c1, #d3adf7) !important;
}

.nav-link-text, .nav-link-icon {
    color: #ffffff !important;
}

.text-primary {
    color: #6f42c1 !important;
}
/* Existing purple theme */
:root {
    --bs-primary: #6f42c1;
    --bs-secondary: #d3adf7;
}

.navbar {
    background-color: #6f42c1 !important;
}

.btn-primary, .btn-secondary {
    background-color: #6f42c1;
    border-color: #6f42c1;
}

.btn-primary:hover, .btn-secondary:hover {
    background-color: #5a32a3;
    border-color: #5a32a3;
}

.bg-primary-gradient {
    background: linear-gradient(to right, #6f42c1, #d3adf7) !important;
}

.nav-link-text, .nav-link-icon {
    color: #ffffff !important;
}

.text-primary {
    color: #6f42c1 !important;
}

/* New Login Page Styles */
.login-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #d3adf7 100%);
    position: relative;
    overflow: hidden;
}

.card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.form-voyage .form-floating {
    position: relative;
}

.input-voyage {
    border: 1px solid #d3adf7 !important;
    border-radius: 8px !important;
    padding-left: 3rem !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    height: 50px;
}

.input-voyage:focus {
    border-color: #6f42c1 !important;
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25) !important;
    outline: none;
}

.form-label {
    color: #6f42c1;
    font-weight: 500;
    transform: translateY(-0.5rem);
    font-size: 0.9rem;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6f42c1;
    font-size: 1rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6f42c1;
    font-size: 1rem;
}

.btn-voyage {
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-voyage:hover {
    transform: scale(1.02);
}

.alert {
    border-radius: 8px;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.text-muted {
    font-size: 0.9rem;
}

.animate__animated {
    animation-duration: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .login-section {
        padding: 2rem 0;
    }

    .card-body {
        padding: 2rem !important;
    }

    .btn-voyage {
        font-size: 1rem;
        padding: 0.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .input-voyage {
        height: 45px;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.8rem;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .card-body {
        padding: 3rem !important;
    }

    h2 {
        font-size: 1.75rem;
    }
}

.form-voyage .form-select.input-voyage {
    padding-left: 3rem !important;
    height: 50px;
    border: 1px solid #d3adf7 !important;
    border-radius: 8px !important;
}

.form-voyage .form-select.input-voyage:focus {
    border-color: #6f42c1 !important;
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25) !important;
    outline: none;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .login-section {
        padding: 2rem 0;
    }

    .card-body {
        padding: 2rem !important;
    }

    .btn-voyage {
        font-size: 1rem;
        padding: 0.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 45px;
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .text-muted {
        font-size: 0.85rem;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .card-body {
        padding: 3rem !important;
    }

    h2 {
        font-size: 1.75rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 48px;
    }
}
.form-voyage textarea.input-voyage {
    padding-left: 3rem !important;
    height: 100px !important;
}

.form-voyage .form-control[type="file"] {
    border: 1px solid #d3adf7 !important;
    border-radius: 8px !important;
    padding: 0.5rem;
    transition: border-color 0.3s ease;
}

.form-voyage .form-control[type="file"]:focus {
    border-color: #6f42c1 !important;
    box-shadow: 0 0 0 0.25rem rgba(111, 66, 193, 0.25) !important;
}

.image-preview-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.primary-radio {
    margin-top: 0.25rem;
}

#imagePreview, #videoPreview {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .login-section {
        padding: 2rem 0;
    }

    .card-body {
        padding: 2rem !important;
    }

    .btn-voyage {
        font-size: 1rem;
        padding: 0.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 45px;
        font-size: 0.9rem;
    }

    .form-voyage textarea.input-voyage {
        height: 80px !important;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .text-muted {
        font-size: 0.85rem;
    }

    #imagePreview img,
    #videoPreview video {
        max-width: 80px;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .card-body {
        padding: 3rem !important;
    }

    h2 {
        font-size: 1.75rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 48px;
    }

    .form-voyage textarea.input-voyage {
        height: 90px !important;
    }
}
.dropzone {
    border: 2px dashed #d3adf7;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    cursor: pointer;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.dropzone:hover, .dropzone.dragover {
    border-color: #6f42c1;
    background: #e9ecef;
}

.dropzone p {
    margin: 0;
    font-size: 1rem;
    color: #6f42c1;
}

.dropzone i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.remove-image, .remove-video {
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    line-height: 1;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .login-section {
        padding: 2rem 0;
    }

    .card-body {
        padding: 2rem !important;
    }

    .btn-voyage {
        font-size: 1rem;
        padding: 0.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 45px;
        font-size: 0.9rem;
    }

    .form-voyage textarea.input-voyage {
        height: 80px !important;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .text-muted {
        font-size: 0.85rem;
    }

    #imagePreview img,
    #videoPreview video {
        max-width: 80px;
    }

    .dropzone {
        padding: 1.5rem;
    }

    .dropzone p {
        font-size: 0.9rem;
    }

    .dropzone i {
        font-size: 1.2rem;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .card-body {
        padding: 3rem !important;
    }

    h2 {
        font-size: 1.75rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 48px;
    }

    .form-voyage textarea.input-voyage {
        height: 90px !important;
    }

    .dropzone {
        padding: 1.75rem;
    }
}
.card-img-top img {
    transition: transform 0.3s ease;
}

.card:hover .card-img-top img {
    transform: scale(1.05);
}

.card-body h5 {
    font-size: 1.25rem;
}

.card-body h4 {
    font-size: 1.5rem;
}

.card-body .text-muted {
    font-size: 0.85rem;
}

.card-body .text-900 {
    font-size: 0.9rem;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
    .login-section {
        padding: 2rem 0;
    }

    .card-body {
        padding: 2rem !important;
    }

    .btn-voyage {
        font-size: 1rem;
        padding: 0.6rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 45px;
        font-size: 0.9rem;
    }

    .form-voyage textarea.input-voyage {
        height: 80px !important;
    }

    .form-label {
        font-size: 0.8rem;
    }

    .text-muted {
        font-size: 0.85rem;
    }

    #imagePreview img,
    #videoPreview video {
        max-width: 80px;
    }

    .dropzone {
        padding: 1.5rem;
    }

    .dropzone p {
        font-size: 0.9rem;
    }

    .dropzone i {
        font-size: 1.2rem;
    }

    .card-img-top img {
        height: 150px;
    }

    .card-body h5 {
        font-size: 1.1rem;
    }

    .card-body h4 {
        font-size: 1.25rem;
    }
}

@media (min-width: 576px) and (max-width: 768px) {
    .card-body {
        padding: 3rem !important;
    }

    h2 {
        font-size: 1.75rem;
    }

    .input-voyage,
    .form-voyage .form-select.input-voyage {
        height: 48px;
    }

    .form-voyage textarea.input-voyage {
        height: 90px !important;
    }

    .dropzone {
        padding: 1.75rem;
    }

    .card-img-top img {
        height: 180px;
    }
}