/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.main-container {
    padding: 2rem;
    max-width: 1200px;
}

/* Logo Styling */
.logo-container {
    margin-bottom: 2rem;
}

.main-logo {
    max-width: 300px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.main-logo:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.3));
}

/* Page Title */
.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
}

.page-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    bottom: -10px;
    left: 25%;
    border-radius: 2px;
}

/* 3D Button Styles */
.btn-3d {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 6px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-3d:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transition: all 0.6s ease;
}

.btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.15);
    color: white;
}

.btn-3d:active {
    transform: translateY(1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.1);
}

.btn-3d:hover:before {
    left: 100%;
}

/* Option Buttons */
.btn-option {
    margin-bottom: 15px;
    font-size: 1rem;
    padding: 15px 20px;
}

.btn-option.active {
    background: linear-gradient(135deg, #8E54E9 0%, #4776E6 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15), 0 8px 8px rgba(0, 0, 0, 0.15);
}

/* Navigation Buttons */
.navigation-buttons {
    margin-top: 3rem;
}

.btn-prev, .btn-next, .btn-target {
    margin: 0 10px;
    min-width: 150px;
}

.btn-target {
    background: linear-gradient(135deg, #FF4E50 0%, #F9D423 100%);
}

/* Form Elements */
.form-control.city-input {
    padding: 15px 20px;
    border-radius: 30px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.form-control.city-input:focus {
    border-color: #8E54E9;
    box-shadow: 0 5px 20px rgba(142, 84, 233, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .btn-3d {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .navigation-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .btn-prev, .btn-next, .btn-target {
        margin: 10px 0;
        width: 100%;
        max-width: 200px;
    }
}

/* Add these styles to your existing custom.css file */

/* Target Page Styles */
.target-section {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.form-check-input {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.form-check-label {
    cursor: pointer;
    padding-left: 5px;
    font-size: 0.95rem;
}

.btn-campaign {
    background: linear-gradient(135deg, #8E54E9 0%, #4776E6 100%);
    min-width: 200px;
}

/* Campaign Definition Page Styles */
.pink-section {
    background-color: rgba(255, 192, 203, 0.2);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.budget-input, .date-input {
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.budget-input:focus, .date-input:focus {
    border-color: #8E54E9;
    box-shadow: 0 5px 20px rgba(142, 84, 233, 0.2);
}

.budget-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.btn-mediamix {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    min-width: 200px;
}

/* Success Page Styles */
.wizard-img {
    max-width: 80px;
    margin: 0 auto;
}

.magic-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8E54E9;
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.info-text, .best-campaign, .reach-info, .strategy-info {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.reach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8E54E9;
    margin: 1rem 0;
}

.media-channel {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.channel-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.channel-details {
    list-style: none;
    padding-left: 0;
    color: #8E54E9;
    font-size: 0.9rem;
}

.location-info p, .duration-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

.details-link {
    display: block;
    color: #4776E6;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.reach-stat {
    font-size: 0.9rem;
    color: #8E54E9;
    margin-bottom: 5px;
}

.btn-light {
    background: white;
    color: #333;
    border: 1px solid #ddd;
}

/* Copy Creation Page Styles */
.upload-area {
    background-color: white;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.upload-box {
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: white;
}

.upload-box:hover {
    border-color: #8E54E9;
}

.preview-img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.btn-style {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    margin: 0 5px 10px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-style:hover, .btn-style.active {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    color: white;
}

.btn-copy {
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    min-width: 200px;
}

/* Add these styles to your existing custom.css file */

/* Copy Selection Page Styles */
.copy-version {
    text-align: left;
    margin-bottom: 30px;
}

.version-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #6c5ce7;
}

.voice-type {
    color: #666;
    font-size: 0.95rem;
    margin: 5px 0;
}

.copy-text-box {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin: 10px 0 10px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.copy-text-box p {
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.edit-link {
    color: #6c5ce7;
    font-size: 0.9rem;
    text-decoration: none;
}

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

/* Voice Selection Page Styles */
.voice-option, .spot-option {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

/* Audio Player Styles */
.audio-player {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.audio-player-icon {
    margin-right: 15px;
}

.play-button {
    background-color: #8E54E9;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: #4776E6;
    transform: scale(1.05);
}

.audio-progress {
    flex-grow: 1;
}

.progress {
    height: 6px;
    background-color: #e0e0e0;
    margin-bottom: 5px;
}

.progress-bar {
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
}

.audio-time {
    font-size: 0.8rem;
    color: #666;
    text-align: right;
}

/* Graphics Selection Page Styles */
.graphics-option {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.graphics-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    display: block;
    margin-bottom: 15px;
}

.graphics-preview {
    margin-top: 15px;
    margin-left: 30px;
}

.preview-img {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    transition: all 0.3s ease;
    /* margin-bottom: 10px; */
    max-height: 100px;
    object-fit: cover;
}

.preview-img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Campaign Ready Page Styles */
.creative-showcase {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.creative-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    padding: 10px 0;
}

.creative-slider img {
    border-radius: 5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.creative-slider img:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Video Player Styles */
.video-player {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-player video {
    border-radius: 4px;
    width: 100%;
    height: auto;
}

.video-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-time {
    font-size: 0.8rem;
    color: #666;
}