.aw-shortlink-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.aw-shortlink-form .form-group {
    margin-bottom: 20px;
}

.aw-shortlink-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.aw-shortlink-form input[type="url"],
.aw-shortlink-form input[type="text"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.aw-shortlink-form input[type="url"]:focus,
.aw-shortlink-form input[type="text"]:focus {
    border-color: #0073aa;
    box-shadow: 0 0 2px rgba(0,115,170,0.8);
    outline: none;
}

.aw-shortlink-form .description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
    font-size: 13px;
}

.aw-shortlink-form .button {
    display: inline-block;
    padding: 8px 16px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.aw-shortlink-form .button:hover {
    background: #005177;
}

.aw-shortlink-form .button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.aw-shortlink-form .shortlink-result {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.aw-shortlink-form .shortlink-result input {
    flex: 1;
    background: #f5f5f5;
    cursor: text;
}

#aw-shortlink-stats {
    margin-top: 30px;
}

#aw-shortlink-stats h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.aw-shortlink-form .wp-list-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.aw-shortlink-form .wp-list-table th {
    text-align: left;
    padding: 10px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.aw-shortlink-form .wp-list-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.aw-shortlink-form .wp-list-table tr:hover {
    background-color: #f9f9f9;
}

.aw-shortlink-form .tablenav {
    margin: 15px 0;
    text-align: right;
}

.aw-shortlink-form .tablenav-pages {
    display: inline-block;
}

.aw-shortlink-form .tablenav-pages a {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #0073aa;
    border-radius: 3px;
}

.aw-shortlink-form .tablenav-pages a.current {
    background: #0073aa;
    color: white;
    border-color: #0073aa;
}

.aw-shortlink-form .tablenav-pages a:hover:not(.current) {
    background: #f5f5f5;
}

#aw-shortlink-detailed-stats {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

#aw-shortlink-detailed-stats h3 {
    margin-bottom: 15px;
}

.aw-shortlink-form .stats-content {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.aw-shortlink-form .stats-content table {
    width: 100%;
    border-collapse: collapse;
}

.aw-shortlink-form .stats-content th {
    text-align: left;
    padding: 10px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.aw-shortlink-form .stats-content td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.aw-shortlink-form .stats-content tr:hover {
    background-color: #f9f9f9;
}

@media screen and (max-width: 782px) {
    .aw-shortlink-form {
        padding: 15px;
    }

    .aw-shortlink-form .shortlink-result {
        flex-direction: column;
    }

    .aw-shortlink-form .wp-list-table {
        display: block;
        overflow-x: auto;
    }

    .aw-shortlink-form .stats-content {
        overflow-x: auto;
    }
} 