
    .servo-api-container {
        max-width: 800px;
        margin: 20px 0;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    }
    
    .servo-api-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .servo-api-form {
        background: #F4F9FF;
        padding: 20px;
        border-radius: 5px;
        margin-bottom: 20px;
    }
    
    .form-row {
        margin-bottom: 15px;
    }
    
    .form-row label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
    }
    
    .form-row input {
        width: 100%;
        padding: 8px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }
    
    .servo-api-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
        border: none;
    }
    
    .servo-api-table th,
    .servo-api-table td {
        padding: 10px;
        border: none;
        text-align: left;
    }
    
    .servo-api-table thead {
        background-color: #f5f5f5;
    }
    
    .servo-api-save-form {
        background: #f0f7ff;
        padding: 15px;
        border-radius: 5px;
        margin-top: 20px;
    }
    
    .loading {
        text-align: center;
        padding: 20px;
        color: #666;
    }
    
    .notice {
        padding: 10px 15px;
        border-radius: 4px;
        margin: 15px 0;
    }
    
    .notice-success {
        background-color: #ecf8ed;
        border-left: 4px solid #46b450;
    }
    
    .notice-error {
        background-color: #fbeaea;
        border-left: 4px solid #dc3232;
    }
    
    .notice-info {
        background-color: #e5f5fa;
        border-left: 4px solid #00a0d2;
    }
    
    .delete-history {
        background: #f14668;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 3px;
        cursor: pointer;
    }
    
    .delete-history:hover {
        background: #e14161;
    }

    .edit-history {
    background: #007bff; /* Bootstrap primary color (blue) */
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none; /* Remove underline for link style */
}

.edit-history:hover {
    background: #0056b3; /* Darker shade for hover effect */
}
    
    /* Update Feature In History Page Styles */
    /* ... */
    
    .servo-api-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }
    
    .servo-api-modal-content {
        background-color: #fff;
        margin: 10% auto;
        padding: 20px;
        border-radius: 5px;
        width: 80%;
        max-width: 600px;
        position: relative;
    }
    
    .close-modal {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        font-weight: bold;
        cursor: pointer;
    }
    
    .close-modal:hover {
        color: #666;
    }
    
    .edit-history {
        background: #4a90e2;
        color: white;
        border: none;
        padding: 5px 10px;
        border-radius: 3px;
        cursor: pointer;
        margin-right: 5px;
    }
    
    .edit-history:hover {
        background: #357ac5;
    }
        /* Pagination Styles */
.servo-api-pagination {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pagination-btn {
    padding: 8px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}
#history-content{
margin-left:25%;

}
.pagination-btn:hover:not([disabled]) {
    background-color: #e5e5e5;
}

.pagination-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination-btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-ellipsis {
    padding: 0 5px;
}

.per-page-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

#per-page-select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ddd;
}
    