/* Styles for Spam Detection Project */
body {
    background: linear-gradient(to right, #ece9e6, #ffffff);
    font-family: 'Arial', sans-serif;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.card {a/* Styles for Spam Detection Project */
    body {
        background: linear-gradient(to right, #ece9e6, #ffffff);
        font-family: 'Arial', sans-serif;
    }
    
    .navbar-brand {
        font-weight: bold;
        font-size: 1.5rem;
    }
    
    .card {
        border-radius: 15px;
        background: #fff;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .card:hover {
        transform: scale(1.02);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
    
    #messageInput {
        border: 2px solid #ccc;
        border-radius: 8px;
        transition: border-color 0.3s;
    }
    
    #messageInput:focus {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }
    
    #result {
        font-size: 1.2rem;
        font-weight: bold;
    }
    
    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        text-align: center;
    }
    
    border-radius: 15px;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

#messageInput {
    border: 2px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s;
}

#messageInput:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#result {
    font-size: 1.2rem;
    font-weight: bold;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}
