/* Ultra-minimal CSS - No vibrations at all */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #ffffff;
    color: #000000;
    line-height: 1.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
    background: #000000;
    color: #ffffff;
    padding: 20px;
}

.header h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.header p {
    font-size: 16px;
}

/* Buttons */
.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    margin: 5px;
}

.btn-primary {
    background: #0000ff;
    color: #ffffff;
}

.btn-success {
    background: #008000;
    color: #ffffff;
}

.btn-secondary {
    background: #808080;
    color: #ffffff;
}

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
}

/* Form */
.form-section {
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #cccccc;
}

.form-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #cccccc;
}

.form-container h3 {
    margin-bottom: 15px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    font-size: 14px;
}

.form-actions {
    text-align: right;
    margin-top: 15px;
}

/* Controls */
.controls-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.search-box,
.filter-box {
    flex: 1;
}

.search-box input {
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    font-size: 14px;
}

.filter-box select {
    width: 100%;
    padding: 8px;
    border: 1px solid #cccccc;
    font-size: 14px;
}

/* Table */
.table-container {
    background: #ffffff;
    border: 1px solid #cccccc;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #000000;
    color: #ffffff;
}

th {
    padding: 12px;
    text-align: left;
    font-weight: bold;
}

td {
    padding: 12px;
    border-bottom: 1px solid #cccccc;
}

tbody tr:nth-child(even) {
    background: #f0f0f0;
}

/* Tags */
.tag {
    display: inline-block;
    padding: 4px 8px;
    background: #0000ff;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

/* Ad Creative */
.ad-creative {
    text-align: center;
    display: flex;
    align-items: center;
}

.ad-creative img {
    border: 1px solid #cccccc;
    margin-bottom: 5px;
    height: 140px;
}

.download-btn {
    background: #008000;
    color: #ffffff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    height: 30px;
    margin-left: 20px;
}

/* Links */
.registration-link {
    color: #0000ff;
    text-decoration: none;
    font-weight: bold;
}

.registration-link:hover {
    text-decoration: underline;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #cccccc;
}

.no-results i {
    font-size: 24px;
    color: #cccccc;
    margin-bottom: 10px;
}

.no-results p {
    color: #666666;
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 15px;
    color: #ffffff;
    font-weight: bold;
    z-index: 1000;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    
    .controls-section {
        flex-direction: column;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    table {
        min-width: 600px;
    }
    
    .form-actions {
        text-align: center;
    }
}
