#AddDevice .modal-content {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#AddDevice .modal-header {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
}

#AddDevice .btn-close {
    background-color: #ccc;
    border-radius: 50%;
    color: #333;

}#deviceId::placeholder {
    text-align: center;
}


#AddDevice .modal-footer {
    border-top: 1px solid #e5e5e5;
}

#deviceId {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #e5e5e5;
}

/* Apply a font-family to the labels and inputs */
.form-group label.device {
    font-weight: bold;
     border-radius: 10px;
    font-size: large;
}
.form-group input.device {
    font-weight: bold;
     border-radius: 10px;
    padding: 10px;

}

/* Define the half-size class to make inputs half the width */
.half-size.device {
    
    display: inline-block; /* Display inputs in a row */
    vertical-align: middle; /* Vertically align labels and inputs */
    margin-right: 10px; /* Add some spacing between input pairs */
}

/* Adjust label styles for better vertical alignment */
.form-group label.device {
    display: block; /* Display labels as block elements */
    text-align: center; /* Center-align text within labels */
    margin-bottom: 5px; /* Add some space below labels */
}

.status-indicator.online {
    background-color: green;
}

.status-indicator.offline {
    background-color: red;
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: black;
}
