/* Full-page background gradient */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center container */
.container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 400px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}

/* Input box and button */
input {
    padding: 10px;
    width: 70%;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background: #2575fc;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #6a11cb;
}

/* Result box */
.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    background: #f5f5f5;
}

/* Status colors */
.malicious {
    color: red;
    font-weight: bold;
    font-size: 18px;
}

.safe {
    color: green;
    font-weight: bold;
    font-size: 18px;
}

.error {
    color: orange;
    font-weight: bold;
    font-size: 18px;
}

/* Footer with GitHub icon */
footer {
    position: fixed;
    bottom: 10px;
    right: 20px;
}

footer a.github-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b);
    transition: all 0.3s ease;
}

footer a.github-link:hover {
    filter: brightness(1.2);
}

.github-icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
    fill: white;
}
