/* CSS for the tabs */
#shortlinks-tabs {
    margin-top: 20px;
}
#shortlinks-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display:flex;
}
#shortlinks-tabs li {
    padding: 10px;
    margin-bottom: 0;
    margin-right: 5px;
    border: 1px solid #ccc;
    border-radius: 10px 10px 0 0;
    border-bottom-width: 0;
	background:#f0f0f0;
}
#shortlinks-tabs li:hover,
#shortlinks-tabs li.ui-state-active {
    background-color: #5078A0;
    color:#fff;
}
#shortlinks-tabs ul a:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
#shortlinks-tabs li:hover a,
#shortlinks-tabs li.ui-state-active a{
	color:#fff;
}
#shortlinks-tabs ul a { 
    text-decoration: none;
    color: #333;
}
.search-wrap {
    margin: 20px 0;
    position: relative;
    display: inline-block;
}
.search-wrap .btn-search {
    background-color: #5078a0;
    border-color: #5078a0;
    color: #fff;
    box-shadow: none;
    outline: none;
    padding: 4.5px 7px;
    margin-left: -7px;
    display: inline-block;
    cursor: pointer;
    height: 30px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.search-wrap .close-btn {
    font-size: 20px;
    cursor: pointer;
    position: absolute;
    right: 60px;
    top: 5px;
    opacity: 0;
}
.search-wrap:hover .close-btn {
    opacity: 1;
}

/* CSS for the table */
.shortlinks-list-table {
    width: 100%;
    margin-bottom: 20px;
}

.shortlinks-list-table th {
    text-align: left;
    padding: 10px;
    background-color: #f9f9f9;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.rtl .shortlinks-list-table th{
    text-align:right;
}
.shortlinks-list-table td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

/* CSS for the Copy button */
.copy-shortlinks-button {
    padding: 5px 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.copy-shortlinks-button:hover {
    background-color: #005a84;
}

#shortlinks-tabs div#nav {
    text-align: center;
}
#shortlinks-tabs #nav a {
    font-size: 19px;
    margin: 0 10px;
}
#shortlinks-tabs #nav a.active {
    pointer-events: none;
    text-decoration: none;
    font-weight: bold;
    font-size: 24px;
}

.text-center {
    text-align: center;
}