/* Style for the form */


.giveanote-center-form {

}

#customAlert {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Ensures true centering */
}
#access-data{
    background-color: #fff;
    padding: 30px ;
    margin: 10px;
    border-radius: 3px;
    box-shadow: #ccc 5px 3px;
    min-width: 65%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%); /* Ensures true centering */

}

.main-block{
    margin: 10px;
    padding: 5px;
}


.company-form {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px 0;
    background-color: #f7f7f7;
}

/* Style for the update button */
.update-button {
    background-color: #3498db;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

/* Style for the table */
table {
    border-collapse: collapse;
    width: 100%;
}

/* Style for table headers */
th {
    background-color: #f2f2f2;
    text-align: left;
    padding: 10px;
}

/* Style for table rows */
td {
    border: 1px solid #ddd;
    padding: 8px;
}

/* Style for edit and delete buttons */
.edit-button, .delete-button {
    display: inline-block;
    padding: 5px 10px;
    margin: 2px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.edit-button:hover, .delete-button:hover {
    background-color: #2980b9;
}

.case_form{
    background-color: #F8F8F8;
    padding: 5px 5px 5px 15px ;
    margin: 10px;
    border-radius: 3px;
    box-shadow: #eee 3px 2px;
}

.sound_note{
    color: #2980b9;
    font-size: small;
}

.custom-alert {
    display: none;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 1000;
}

.custom-alert-content {
    position: absolute;
    top: 50%;
    left: 0;  /* Adjusted this */
    width: 100%; /* Adjusted this */
    transform: translateY(-50%);
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    text-align: center; /* Centers the text and button */
}

#customAlertOk {
    margin-top: 10px;
    display: inline-block; /* Changed from block to inline-block */
    
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
}

/* Common styles for both buttons */
.navigation-btn {
    margin: 0 10px;  /* Space between buttons */
    padding: 5px 15px;  /* Button size */
    cursor: pointer;  /* Hand cursor on hover */
    display: inline-block;  /* Ensures the buttons are displayed in a line */
    vertical-align: middle;  /* Aligns them vertically in the middle */
}


/* Optional: Some more styles for better visuals */
.back-btn {
    background-color: #007BFF; /* Light grey background */
    border: 1px solid #ccc;  /* Grey border */
    
  
}

.continue-btn {
    background-color: #007BFF;  /* Blue background */
    border: 1px solid #007BFF;  /* Blue border */

}
#record-section{
    display: flex;
    align-items: center;
}

.record-btn{
    background-color: #f0f0f0; 
    color: #312f2f;
    margin: 0 10px;
}

.navigation-btn:hover {
    opacity: 0.8;  /* Slight fade on hover for interaction feedback */
}

.messages-list{
}


.messages-list{
    list-style-type: none;
}


.message-content{
    border: solid 1px #eee;  
    line-height: 2px;
    margin: 12px;
    padding: 10px 20px;
    border-radius: 10px;
    line-height: 20px;
}

.message-content-admin{
    text-align: left;
    
}
.message-content-user{
   text-align: right;
    
}
.create-time{
    font-size: 11px;
    color: gray;
}

.giveanote-internal-menu ul {
    list-style-type: none;
    padding-bottom: 40px ;
}
.giveanote-internal-menu li {
    margin-bottom: 10px;
    float: left;
    margin: 10px;
    border:  solid 1px;
    padding: 3px 6px;
    border-radius: 4px;
    box-shadow: #ddd 1px 1px;
}
.giveanote-internal-menu li a {
    text-decoration: none;

}


.kanban-board {
    display: flex;
    overflow-x: scroll;
    gap: 10px;
}

.kanban-column {
    min-width: 240px;
    max-width: 280px;
    background-color: #f4f4f4;
    padding: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.kanban-card {
    background-color: #ffffff;
    padding: 10px;
    margin-top: 10px;
    border-radius: 16px 3px 3px 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    opacity: 0.85;

}
.kanban-card:hover{
    box-shadow:  2px 4px rgba(20, 19, 19, 0.5);
    opacity: 1;
}

.kanban-card-green{
    background-color: #d4f8d2;
}
.kanban-card-orange{
    background-color: #f8e2b7;
}
.kanban-card-red{
    background-color: #f6bebe;
}

.date-form{
    color: #716e6e;
    font-size: small;
    font-weight: bold;
}


