body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

h1 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.description {
    color: #7f8c8d;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
}

input {
    padding: 12px;
    margin: 5px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    width: 200px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #3498db;
    outline: none;
}

button {
    padding: 12px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.check-btn {
    background-color: #2ecc71;
    color: white;
}

.report-btn {
    background-color: #e74c3c;
    color: white;
}

.delete-btn {
    background-color: #95a5a6;
    color: white;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

#result {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
}

.scam-list {
    margin-top: 30px;
    text-align: left;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.scam-list h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.scam-item {
    padding: 10px;
    margin: 5px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.scam-item:last-child {
    border-bottom: none;
}

.scam-number {
    font-weight: 500;
}

.scam-details {
    color: #7f8c8d;
    font-size: 14px;
}

.search-box {
    width: 100%;
    max-width: 300px;
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.stats {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.stat-label {
    color: #7f8c8d;
    font-size: 14px;
}