body {
    background-color: #ffffff;
    color: #000000;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode {
    background-color: #2c2c2c;
    color: #ffffff;
}

#mode-icon {
    cursor: pointer;
    font-size: 1.5rem;
}

.spinner-border {
    margin: 20px auto;
    display: block;
}

.result-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
	line-break: anywhere;
}

.result-card.dark-mode {
    background-color: #3a3a3a;
}

.result-card h4 {
    margin-bottom: 10px;
    color: #007bff;
}

.result-card.dark-mode h4 {
    color: #ffdf00;
}

.result-card ul {
    list-style: none;
    padding: 0;
}

.result-card ul li {
    margin-bottom: 5px;
}

.result-card ul li strong {
    color: #28a745;
}

.result-card.dark-mode ul li strong {
    color: #ffc107;
}
