/* AI Media Analyzer Styles - Versione Semplificata */

#ai-media-analyzer {
    max-width: 100%;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    
}

#results-content h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #fff
}

@media(min-width: 968px) {
    #results-content h2 {
        font-size:32px
    }
}

@media(min-width: 1024px) {
    #results-content h2 {
        font-size:40px
    }
}

@media(min-width: 1280px) {
    #results-content h2 {
        font-size:48px
    }
}



#ai-media-analyzer  .container {
    max-width: 600px;
    margin: 0 !important;
    padding: 0 !important;
}
#upload-form {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e080;
    margin-bottom: 20px;
}

#media-file {
    width: 100%;
    padding: 12px;
    border: 2px dashed #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

#media-file:hover {
    border-color: red;
    background: #fff1;
}

#media-file:focus {
    outline: none;
    border-color: red;
}

.button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 10px;
}

.button-primary {
    background-color: #fe0000;
    color: white;
}

.button-primary:hover {
    background-color: #ff3336;
    transform: translateY(-1px);
}

.button:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

#preview-wrap {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin: 15px 0;
}

#selected-image, #selected-video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#upload-status {
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    margin: 10px 0;
    border: 1px solid;
}

#upload-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

#upload-status.success {
    background-color: #d4edda;
    color: #000;
    border-color: #c3e6cb;
}

#upload-status.info {
    background-color: #d1ecf1;
    color: #000;
    border-color: #bee5eb;
}

#results-overlay {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
    color: #fff;
}

#loader {
    color: white;
    font-size: 16px;
    font-weight: 500;
}

.ainalyzerheader {
    color: #fff;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.bulletresults {
    margin-bottom: 10px;
    padding-left: 15px;
    line-height: 1.6;
    position: relative;
    font-size: 14px;
    color: #fff;
}

.bulletresults:before {
    content: "•";
    color: #fff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.bulletresults.issue:before {
    content: "⚠️";
    color: #d63638;
}

.bulletresults.suggestion:before {
    content: "💡";
    color: #00a32a;
}

.analysis-results h6 {
    color: #fff;
    margin: 15px 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

#results-content ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

#clear-button {
    background: #f0f0f1;
    color: #2c3338;
    border: 1px solid #c3c4c7;
}

#clear-button:hover {
    background: #e0e0e1;
    color: #2c3338;
}

/* Responsive */
@media (max-width: 768px) {
    #ai-media-analyzer {
        padding: 15px;
    }
    
    #upload-form {
        padding: 15px;
    }
    
    .button {
        width: 100%;
        margin: 5px 0;
        text-align: center;
    }
}

@media(min-width: 968px) {
    .bulletresults {
        font-size:16px
    }
}

@media(min-width: 1024px) {
    .bulletresults {
        font-size:18px
    }
}