body {
    background-color: #0a0a0a;
    font-family: 'Segoe UI', sans-serif;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
}

h1,
h2 {
    color: #00ffd5;
    text-align: center;
}

textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    resize: vertical;
    min-height: 120px;
}

button {
    margin-top: 15px;
    padding: 12px 20px;
    font-size: 16px;
    background-color: #00ffd5;
    border: none;
    color: #000;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background-color: #00ccb3;
}

.result {
    margin-top: 30px;
    padding: 20px;
    border-radius: 6px;
    background-color: #2c5153;
    border-left: 4px solid #00ffd5;
}

.confidence-bar-container {
    background: #444;
    border-radius: 10px;
    height: 25px;
    margin-top: 15px;
}

.confidence-bar-fill {
    height: 100%;
    border-radius: 10px;
    text-align: right;
    padding-right: 10px;
    color: white;
    font-weight: bold;
    transition: width 0.3s ease;
}

.trusted-sources {
    margin-top: 40px;
}

details.source-box {
    background: #1a1a1a;
    border-left: 4px solid #00ffd5;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 6px;
    color: #c58080;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

details.source-box:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px #00ffd5aa;
}

details summary {
    list-style: none;
    cursor: pointer;
    color: #00ffd5;
    font-weight: bold;
}

details summary::-webkit-details-marker {
    display: none;
}

.feedback-form {
    margin-top: 30px;
}

input[type="radio"] {
    margin-right: 8px;
}

footer {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    color: #777;
}

@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    textarea {
        font-size: 14px;
    }

    button {
        width: 100%;
        font-size: 15px;
    }
}



.quick-tips-container {
    font-family: Arial, sans-serif;
    /* Or your preferred font */
    background-color: #a0bdba;
    /* Assuming a white background */
    padding: 20px;
    border-radius: 8px;
    /* If it's a separate box, you might add a subtle shadow or border */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}

.quick-tips-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.tip-section {
    margin-bottom: 25px;
}

.tip-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.tip-header .icon {
    font-size: 20px;
    margin-right: 10px;
}

.tip-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #555;
    margin: 0;
}

.tip-section ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    margin: 0;
}

.tip-section ul li {
    font-size: 15px;
    color: #3d3030;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
    /* Space for custom bullet */
}

.tip-section ul li::before {
    content: '\2022';
    /* Unicode character for a bullet point */
    color: #888;
    /* Color of the bullet */
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 0;
}

.model-status {
    display: flex;
    align-items: center;
    background-color: #e6ffe6;
    /* Light green background */
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 30px;
}

.model-status .status-icon {
    font-size: 20px;
    margin-right: 10px;
}

.model-status .status-text {
    font-size: 16px;
    font-weight: bold;
    color: #3CB371;
    /* Green text */
}