﻿.reTableDiv {
    display: none !important;
}

.status-card {
    padding: 2rem;
    border-radius: .75rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    background-color: #efebeb;
    margin-top: 2rem;
    overflow: hidden; /* ensures rounded corners apply to header too */
}

.status-card-header {
    background-color: #00a9e0; /* Bootstrap primary blue */
    color: black;
    margin: -2rem -2rem 2rem -2rem; /* break out of padding */
    padding: 1rem;
    text-align: center;
}

    .status-card-header h1 {
        font-size: 1.75rem;
        margin: 0;
    }

.status-field {
    margin-bottom: 1.5rem;
}

.status-field-label-header {
    font-weight: bold;
    text-decoration: underline;
    color: #5a5a5a;
    display: block;
    margin-bottom: .5rem;
}

.status-field-value {
    font-size: 1.1rem;
    color: #333;
}

.action-buttons-container {
    text-align: right;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.form-label-bold {
    font-weight: bold;
    color: #333;
}

/* Grid and Button Styles */
.grid-container horizontalScroll horizontalScroll {
    margin-top: 15px;
    margin-bottom: 30px;
}

.grid-container {
    margin-top: 15px;
    margin-bottom: 30px;
}


.row-item {
    margin-bottom: 15px;
}

.form-value {
    padding-left: 5px;
}

.checkbox-item-wrapper, .radio-list-wrapper {
    display: block !important;
    margin-bottom: 15px;
}

.radio-spacing label {
    margin-right: 15px;
    font-weight: normal;
}


.gridButtons a {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px;
    background-color: #007bff;
    color: white;
    border-radius: 4px;
    text-decoration: none;
}

.submit-button-container {
    text-align: center;
    margin-top: 30px;
}

.submit-button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
}

    .submit-button:hover {
        background-color: #0056b3;
    }

.social-input-container {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between each row */
    padding: 20px;
}

.social-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 2px solid #34aadc; /* Light blue border */
    border-radius: 50%; /* Makes it circular */
    color: #34aadc; /* Light blue icon color */
    font-size: 20px;
}

.prefilled-text, .prefix-spacer {
    display: inline-block;
    width: 45px; /* Adjust this width if needed */
    flex-shrink: 0; /* Prevents the element from shrinking */
    color: #888;
    font-size: 18px;
    padding-left: 5px;
    box-sizing: border-box;
}

.next-button-container {
    text-align: right;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}


.no-resize {
    resize: none;
}
















/* Media Query for Phones (screens smaller than 768px) */
@media (max-width: 767px) {
    .action-buttons-container {
        text-align: center; /* Center buttons on mobile */
    }

        .action-buttons-container .btn-success,
        .action-buttons-container .btn-danger {
            width: 100%;
            margin-bottom: 10px;
            box-sizing: border-box;
        }

        .action-buttons-container .btn-danger {
            margin-left: 0 !important;
        }

    .form-label-bold, .form-value {
        font-size: 14px; /* Adjust text size for readability */
    }

    .panel-content-wrapper {
        padding: 10px 0;
    }

    h1 {
        font-size: 1.5rem; /* Reduce heading size */
    }

    .submit-button {
        width: auto;
    }
}


.radpicker input[disabled] {
    /* Gray out the text */
    color: #888 !important;
    /* Slightly darker background to show it's inactive */
    background-color: #e9ecef !important;

    opacity: 1;
}