﻿/* Genel stil ayarları */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f7;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 28px;
    color: #1d1d1f;
    margin-bottom: 40px;
}

.search-box {
    margin-bottom: 30px;
}

input[type="text"] {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #d1d1d6;
    border-radius: 12px;
    background-color: #f5f5f7;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus {
    border-color: #0071e3;
}

h3 {
    font-size: 18px;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.file-options, .search-locations {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

label {
    font-size: 16px;
    color: #1d1d1f;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

label input[type="radio"] {
    margin-right: 8px;
    accent-color: #0071e3; /* Apple mavi rengi */
}

button.search-button, button.virus-total-button {
    background-color: #0071e3;
    color: white;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button.search-button:hover, button.virus-total-button:hover {
    background-color: #005bb5;
}

button.search-button:active, button.virus-total-button:active {
    background-color: #004494;
}

.security-tips {
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.warning {
    color: red;
    font-size: 14px;
    margin-bottom: 10px;
}

footer {
    margin-top: 40px;
    color: #1d1d1f;
    font-size: 14px;
    text-align: center;
}

/* Mobil duyarlılık */
@media (max-width: 600px) {
    h1 {
        font-size: 24px;
    }

    h3 {
        font-size: 16px;
    }

    label {
        font-size: 14px;
    }

    button.search-button, button.virus-total-button {
        padding: 12px;
        font-size: 14px;
    }
}
