/*
+--------------------------------------------------+
|         This was created by Tyler Chaky          |
|                                                  |
|  __          __   _____   __      __   __   __   |
|  \ \        / /  /  _  \  \ \    / /  /_ | /_ |  |
|   \ \  /\  / /  /  /_\  \  \ \  / /    | |  | |  |
|    \ \/  \/ /  /  _____  \  \ \/ /     | |  | |  |
|     \__/\__/  /__/     \__\  \__/      |_|  |_|  |
|                                                  |
+--------------------------------------------------+
*/

textarea.input-text {
    resize: vertical;
    font-family: 'Consolas', monospace;
    line-height: 1.5;
}

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

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-secondary);
    color: var(--text-secondary);
    padding: 15px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    width: 100px;
}

.btn-secondary:hover {
    border-color: #fff;
    color: #fff;
}

#progress-container {
    margin-bottom: 25px;
    animation: fadeIn 0.3s ease;
}

.progress-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.progress-bar-bg {
    width: 100%;
    height: 6px;
    background: #000;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

#results-area {
    overflow-x: auto;
}

.mac-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.mac-table th {
    text-align: left;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.mac-table td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    font-family: 'Consolas', monospace;
}

.mac-table tr:hover td {
    background: rgba(102, 252, 241, 0.05);
}

.status-found { color: #00ff9d; font-weight: bold; }
.status-missing { color: #ff3333; }
.status-pending { color: #888; font-style: italic; }

.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }