* {
    font-family: 'Poppins', sans-serif;
}
body {
    margin: 0;
    padding: 0;
    background-color: #fff;
}
.logo img{
    max-width: 150px;
    margin-bottom:25px;
}

h2{
    font-size: 20px;
    font-weight: 700;
}
label {
    display: block;
    margin-bottom: 10px!important;
    font-size: 12px;
    font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 8px;
}
.form-control{
    font-size: 13px;
}
.text-muted{
    text-align: center;
    font-weight: 600;
}
.appie-btn {
    padding: 10px 20px;
    background: #ED6803;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
}
.appie-btn-2 {
    padding: 10px 20px;
    background: #ED6803;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
}

.view-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #6EC1E4;
    color: #000 !important;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}
.admin-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #cccccc;
    color: #000 !important;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}
.back-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #6EC1E4;
    color: #000 !important;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}
.common-spacing{
    padding-left: 50px;
    padding-right: 50px;
}
@media(max-width:600px){
    .common-spacing{
        padding-left: 10px;
        padding-right: 10px;
    }
    .dis-wrap{
        display: block!important;
        text-align: center;
    }
    .back-btn{
        width: 100%!important;
    }
}
table {
    width: 100%;
    border-collapse: separate; /* Changed from collapse to separate for border-radius to work */
    border-spacing: 0; /* Keeps cells touching while allowing border-radius */
    margin-top: 20px;
    border-radius: 10px; /* Added border-radius */
}

th, td {
    padding: 10px;
    text-align: left;
}

th {
    background: #f4f4f4;
}

/* Add border-radius to corner cells */
th:first-child {
    border-top-left-radius: 8px; /* Slightly less than table radius due to border width */
}
th:last-child {
    border-top-right-radius: 8px;
}
tr:last-child td:first-child {
    border-bottom-left-radius: 8px;
}
tr:last-child td:last-child {
    border-bottom-right-radius: 8px;
}