/* Custom CSS for tarzi documentation */

/* Logo styling */
.sidebar-logo img {
    max-width: 100%;
    height: auto;
}

/* Code block styling */
.highlight pre {
    padding: 1em;
    border-radius: 6px;
    overflow-x: auto;
}

/* Admonition styling */
.admonition {
    border-radius: 6px;
    border-left: 4px solid;
    padding: 1em;
    margin: 1em 0;
}

.admonition.note {
    border-left-color: #2196F3;
    background-color: #f5f5f5;
}

.admonition.warning {
    border-left-color: #ff9800;
    background-color: #fff3e0;
}

.admonition.tip {
    border-left-color: #4caf50;
    background-color: #f1f8e9;
}

/* Button styling */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
}

/* Table styling */
table {
    border-collapse: collapse;
    width: 100%;
    margin: 1em 0;
}

table th,
table td {
    border: 1px solid #ddd;
    padding: 0.75em;
    text-align: left;
}

table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    .sidebar-logo img {
        max-width: 150px;
    }
} 