/* Custom styles for Rent Tax System */
body {
    font-family: "Segoe UI", Arial, sans-serif;
}

.w3-sidebar {
    z-index: 3;
    width: 20%;
    top: 0;
    bottom: 0;
    height: 100%;
    position: fixed;
    overflow: auto;
}

.w3-bar-item {
    padding: 16px;
    text-align: left;
}

.w3-card-4 {
    margin-bottom: 20px;
}

.w3-table-all {
    margin-top: 10px;
}

/* Responsive design */
@media screen and (max-width: 600px) {
    .w3-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .w3-sidebar a {
        float: left;
    }
    div.content {
        margin-left: 0;
    }
}

/* Dashboard cards */
.w3-card {
    transition: 0.3s;
    border-radius: 5px;
}

.w3-card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

/* Form styling */
.w3-input {
    margin-bottom: 10px;
}

/* Alert messages */
.w3-panel {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Table hover effect */
.w3-table-all tbody tr:hover {
    background-color: #e7f3ff !important;
}

/* Custom button styles */
.w3-button {
    border-radius: 3px;
}

/* Integration cards */
.integration-card {
    margin: 10px;
    padding: 15px;
}