﻿body {
    padding-top: 50px;
    padding-bottom: 20px;
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Override the default bootstrap behavior where horizontal description lists 
   will truncate terms that are too long to fit in the left column 
*/
.dl-horizontal dt {
    white-space: normal;
}

/* Set width on the form input elements since they're 100% wide by default */
input,
select,
textarea {
    max-width: 280px;
}
/* Already Exist */

/* Button styles */
.bttn {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    font-weight: bold;
    letter-spacing: 1px;
    overflow: hidden;
    background-color: #813069; /* Updated button color */
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .bttn:hover {
        background-color: #682356; /* Updated hover color */
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

    .bttn:active {
        background-color: #4f1b47; /* Updated active color */
        transform: scale(0.95) rotate(3deg);
        color: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }




.btn {
    display: inline-block;
    padding: 8px 16px;
    border: none;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
    font-weight: bold;
    letter-spacing: 1px;
    overflow: hidden;
    background-color: #813069; /* Updated button color */
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .btn:hover {
        background-color: #682356; /* Updated hover color */
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }

    .btn:active {
        background-color: #4f1b47; /* Updated active color */
        transform: scale(1);
        color: white;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

/* Table styles */
.customers {
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

    .customers td, .customers th {
        border: 1px solid #ddd;
        padding: 12px;
        text-align: start;
    }

    /*.customers tr:nth-child(even) {
        background-color: #f2f2f2;
    }*/

    .customers tr:hover {
        background-color: #ddd;
    }

    .customers th {
        padding: 16px 12px;
        font-size: 18px;
        background-color: #903268;
        color: white;
    }

.alert-customers {
    background-color: #F4EBFF; /* Updated button color */
    color: #903268;
    font-weight: bold;
}
