/* Body and container */

.containerRandom456 {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}
.titleRandom789 { 
    color: #4a5568; 
    margin-bottom: 10px;
    
    position: relative;
}
.titleRandom789::before {
    content: '🌐';
    font-size: 0.8em;
    margin-right: 10px;
}
.subtitleRandom101 {
    color: #718096;
    margin-bottom: 30px;
    font-size: 1.1em;
    line-height: 1.6;
}
.inputGroupRandom202 {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.inputRandom303 { 
    flex: 1;
    min-width: 250px;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1em;
    outline: none;
    transition: border-color 0.3s;
}
.inputRandom303:focus {
    border-color: #667eea;
}
.buttonRandom404 { 
    padding: 15px 30px; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white; 
    border: none; 
    border-radius: 50px; 
    cursor: pointer; 
    font-size: 1em;
    margin-left: 10px;
    transition: transform 0.2s;
}
.buttonRandom404:hover { 
    transform: translateY(-2px);
}
.resultRandom505 { 
    margin-top: 30px; 
    padding: 20px; 
    border-radius: 10px; 
    display: none; 
    text-align: left;
    background: #f7fafc;
    border-left: 4px solid #667eea;
    line-height: 1.6;
}
.errorRandom606 { 
    color: #e53e3e; 
    border-left-color: #e53e3e;
    background: #fed7d7;
}
.successRandom707 { 
    color: #0277bd;               /* Dark blue text */
    border-left: 4px solid #0288d1;  /* Bright blue border */
    background: #e0f7fa;          /* Light blue background */
    padding: 15px;              
    border-radius: 8px;         
    line-height: 1.6;
}

/* Individual result lines */
.resultItemRandom808 {
    background: #ffffff; /* White for contrast */
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    border-left: 3px solid #0288d1; /* Optional small accent */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.resultItemRandom808:last-child {
    border-bottom: none;
}
.loadingRandom909 {
    text-align: center;
    color: #718096;
    font-style: italic;
}
.instructionsRandom111 {
    text-align: left;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 50px;
    line-height: 1.8;
    margin-left:10px;
    margin-right:10px;
    
}
.instructionsRandom111 h2 {
    color: #4a5568;
    margin-bottom: 15px;
}
.instructionsRandom111 ol {
    margin-left: 20px;
}
.instructionsRandom111 ul {
    margin-left: 20px;
}
@media (max-width: 600px) {
    .inputGroupRandom202 {
        flex-direction: column;
    }
    .buttonRandom404 {
        margin-left: 0;
        margin-top: 10px;
    }
}